From: Daniel Schepler Date: Fri, 2 Sep 2016 08:18:33 +0000 (+0000) Subject: Fix FTBFS in x32 X-Git-Tag: archive/raspbian/2.4.11-4+rpi1~1^2^2~3 X-Git-Url: https://dgit.raspbian.org/%22http://www.example.com/cgi/%22/%22http:/www.example.com/cgi/%22?a=commitdiff_plain;h=b9da6d97b5377798e6259fc6dd91d9f4bb3625ed;p=webkitgtk.git Fix FTBFS in x32 =================================================================== Gbp-Pq: Name x32_support.patch --- diff --git a/Source/WTF/wtf/Platform.h b/Source/WTF/wtf/Platform.h index 91a1f05..581632b 100644 --- a/Source/WTF/wtf/Platform.h +++ b/Source/WTF/wtf/Platform.h @@ -182,8 +182,12 @@ /* CPU(X86_64) - AMD64 / Intel64 / x86_64 64-bit */ #if defined(__x86_64__) \ || defined(_M_X64) +#ifdef __ILP32__ +#define WTF_CPU_X86_64_32 1 +#else #define WTF_CPU_X86_64 1 #endif +#endif /* CPU(ARM64) - Apple */ #if (defined(__arm64__) && defined(__APPLE__)) || defined(__aarch64__)